home *** CD-ROM | disk | FTP | other *** search
/ Interactive Quarterly / The Best of New Machine Publishing 1 - Disc 4: Interactive Quarterly.iso / pc / xtras / pomlite.dir / Documentation_11.txt < prev    next >
Encoding:
Text File  |  1996-10-06  |  735 b   |  17 lines

  1. doJobSetup
  2.  
  3. Syntax: doJobSetup(documentObject)
  4.  
  5. Returns: TRUE if the user clicks "Print" in the job setup dialog
  6.         FALSE if the user clicks "Cancel" in the job setup dialog
  7.  
  8. The doJobSetup function displays the job setup dialog for a PrintOMatic Lite document. This function should be called right before printing. If doJobSetup returns TRUE, the user clicked the "Print" button, and printing should proceed. If doJobSetup returns FALSE, the user clicked "Cancel", and you should not print the document. This function cannot be called on an empty document.
  9.  
  10. Example:
  11.  
  12. This is the recommended way of calling doJobSetup right before printing a PrintOMatic Lite document object:
  13.  
  14.     if doJobSetup (doc) = TRUE then print doc
  15.     
  16.  
  17.